.page_veille-container{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    z-index: 50000;
}

.page_veille-container-droit {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: row;
    align-items: center;
}

.page_veille-ligne{
    flex-grow: 1;
    height: 15px;
    background-color: white;
}

.page_veille-bloc_centre{
    position: relative;
    width: 380px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    position: relative;
}

.page_veille-bloc_centre > img {
    height: 100%;
}

.page_veille-bloc_centre p {
    position: absolute;
    color: white;
    font-family: 'OpenSans-Bold';
    font-size: 33px;
    width: 100%;
    text-align: center;
    display: flex;
    white-space: nowrap;
    justify-content: center;
}
.page_veille-bloc_centre p:nth-child(1) {
    bottom: calc(100% + 17px);
}
.page_veille-bloc_centre p:nth-last-child(1) {
    top: calc(100% + 17px);
}

/********************************************* POPUP MISE EN VEILLE *******************/

.page-popup-veille {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 20000;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.contener-popup-veille {
    width: 600px;
    height: 350px;
    border-radius: 10px;
    background-color: #D34B34;
    border: 5px solid white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.texte-popup-veille {
    color: white;
    font-size: 40px;
    text-align: center;
    font-family: 'OpenSans-Regular';
}

.compteur-popup-veille {
    color: white;
    font-size: 70px;
    text-align: center;
    margin-top: -50px;
    margin-bottom: -50px;
    font-family: 'OpenSans-Regular';
}